.voice_container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    color: #333;
}
.voice_poll_card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f5;
    padding: 24px;
    margin-bottom: 25px;
    transition: transform 0.2s ease;
}
.voice_poll_card:hover {
    transform: translateY(-2px);
}
.voice_question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1f36;
}
.voice_gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
}
.voice_gallery img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.voice_options_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.voice_option_item {
    position: relative;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    overflow: hidden;
    transition: all 0.2s ease;
}
.voice_option_item:hover {
    border-color: #4f46e5;
    background: #f8fafc;
}
.voice_progress_bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(79, 70, 229, 0.1);
    z-index: 1;
    transition: width 0.4s ease;
}
.voice_text {
    z-index: 2;
    font-weight: 500;
}
.voice_stats {
    z-index: 2;
    font-size: 0.85rem;
    color: #64748b;
    text-align: right;
}
.voice_badge {
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}
.voice_badge_auth { background: #dcfce7; color: #166534; }
.voice_badge_guest { background: #fef9c3; color: #713f12; }

/* Формы */
.voice_form_group {
    margin-bottom: 15px;
}
.voice_form_group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.voice_input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-sizing: border-box;
}
.voice_btn {
    background: #4f46e5;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}
.voice_btn:hover { background: #4338ca; }
.voice_btn_danger { background: #ef4444; }
.voice_btn_danger:hover { background: #dc2626; }
